home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Erotic Games: Memory
/
Erotic Games: Memory.iso
/
mac
/
air_installers
/
AdobeAIR.exe
/
setup.swf
/
scripts
/
mx
/
events
/
StyleEvent.as
< prev
next >
Wrap
Text File
|
2009-02-12
|
972b
|
35 lines
package mx.events
{
import flash.events.Event;
import flash.events.ProgressEvent;
import mx.core.mx_internal;
use namespace mx_internal;
public class StyleEvent extends ProgressEvent
{
mx_internal static const VERSION:String = "3.0.0.0";
public static const COMPLETE:String = "complete";
public static const PROGRESS:String = "progress";
public static const ERROR:String = "error";
public var errorText:String;
public function StyleEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:uint = 0, param5:uint = 0, param6:String = null)
{
super(param1,param2,param3,param4,param5);
this.errorText = param6;
}
override public function clone() : Event
{
return new StyleEvent(type,bubbles,cancelable,bytesLoaded,bytesTotal,errorText);
}
}
}